forked from steemit/steem-python
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (43 loc) · 1.5 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
#!/usr/bin/env python3
from pipenv.project import Project
from pipenv.utils import convert_deps_to_pip
from setuptools import setup, find_packages
import sys
pfile = Project(chdir=False).parsed_pipfile
requirements = convert_deps_to_pip(pfile['packages'], r=False)
test_requirements = convert_deps_to_pip(pfile['dev-packages'], r=False)
setup(
name='steem',
version='0.18.103',
description='Official Python Steem Library',
# long_description = file: README.rst
keywords=['steem', 'steemit', 'cryptocurrency', 'blockchain'],
license='MIT',
url='https://github.com/steemit/steem-python',
maintainer='steemit_inc',
maintainer_email='[email protected]',
packages=find_packages(),
setup_requires=[
'pytest-runner',
'pipenv',
],
tests_require=test_requirements,
install_requires=requirements,
entry_points={
'console_scripts': [
'piston=steem.cli:legacyentry',
'steempy=steem.cli:legacyentry',
'steemtail=steem.cli:steemtailentry',
],
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7'
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 4 - Beta'
])