-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (39 loc) · 1.1 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
import sys
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
assert sys.version_info[0] == 3, "steemdata requires Python > 3"
VERSION = '2.3'
setup(
name='steemdata',
version=VERSION,
description='Python Utilities for parsing STEEM blockchain',
long_description=open('README.md').read(),
url='https://github.com/SteemData/steemdata',
author='@furion',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
keywords='steem',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[
'pymongo',
'python-dateutil',
'requests',
'funcy',
'werkzeug',
],
dependency_links=[
'git+git://github.com/Netherdrake/steem-python'
],
extras_require={
'dev': ['check-manifest'],
'test': ['coverage'],
},
)