-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathsetup.py
59 lines (54 loc) · 1.8 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup
import versioneer
install_requires = [
'chardet',
'click',
'dnspython',
'python-daemon>2.2.0',
]
extras_require = {
"docs": [
"sphinx",
"sphinx_rtd_theme",
"sphinx-click",
],
}
config = {
'description': 'A Python Mail Server',
'long_description': open("README.rst").read(),
'url': 'https://github.com/moggers87/salmon',
'download_url': 'http://pypi.python.org/pypi/salmon-mail',
'author': 'Salmon project contributors',
'maintainer': 'Matt Molyneaux',
'maintainer_email': 'moggers87+git@moggers87.co.uk',
'version': versioneer.get_version(),
'cmdclass': versioneer.get_cmdclass(),
'install_requires': install_requires,
'extras_require': extras_require,
'test_suite': 'tests',
'packages': ['salmon', 'salmon.handlers'],
'include_package_data': True,
'name': 'salmon-mail',
'license': 'GPLv3',
'classifiers': [
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Intended Audience :: Developers',
'Topic :: Communications :: Email',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
'python_requires': '>=3.8',
'entry_points': {
'console_scripts':
['salmon = salmon.commands:main'],
},
}
setup(**config)