You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
916 B
31 lines
916 B
from setuptools import setup, find_packages |
|
|
|
with open("README.md") as readme: |
|
long_description = readme.read() |
|
|
|
|
|
with open("requirements.txt") as reqs: |
|
requirements = reqs.read().split("\n") |
|
|
|
setup( |
|
name='scormod', |
|
version='0.1', |
|
description="A moderation bot for the loult", |
|
long_description=long_description, |
|
long_description_content_type='text/markdown', |
|
author='hadware', |
|
license='MIT', |
|
classifiers=[ |
|
'Development Status :: 3 - Alpha', |
|
'Intended Audience :: Developers', |
|
'License :: OSI Approved :: AGPL License', |
|
'Programming Language :: Python :: 3', |
|
'Programming Language :: Python :: 3.6', |
|
'Programming Language :: Python :: 3.7', |
|
], |
|
keywords='cookies', |
|
packages=find_packages(), |
|
install_requires=requirements, |
|
include_package_data=True, |
|
test_suite='nose.collector', |
|
tests_require=['nose'])
|
|
|