-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
executable file
·40 lines (37 loc) · 1.25 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
#!/usr/bin/env python
from pathlib import Path
from setuptools import setup, find_packages
README = Path('README.rst').open('rt').read()
REQUIREMENTS = Path('requirements.txt').open('rt').read().strip().split('\n')
VERSION = open(Path('VERSION.txt')).read().strip()
setup(name='numismatic',
version=VERSION,
description='Coin Collector for digital assets ',
url='http://github.com/snth/numismatic/',
maintainer='Tobias Brandt',
maintainer_email='[email protected]',
license='MIT',
keywords='bitcoin,ethereum,cryptocurrencies',
packages=find_packages(),
package_data={
'': ['*.txt', '*.md', '*.rst'],
},
long_description=README,
install_requires=REQUIREMENTS,
python_requires='~=3.6',
extras_require={
'SQL': ['sqlalchemy'],
},
zip_safe=False,
entry_points='''
[console_scripts]
coin=numismatic.cli:coin
''',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
],
)