-
Notifications
You must be signed in to change notification settings - Fork 105
/
setup.py
38 lines (35 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# requirements
INSTALL_REQUIRES = list()
with open('requirements.txt') as f:
INSTALL_REQUIRES = f.read().splitlines()
setup(
name='sharding',
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
version='0.0.2-alpha.2',
description='Ethereum Sharding Manager Contract',
url='https://github.com/ethereum/sharding',
packages=find_packages(
exclude=[
"tests",
"tests.*",
"tools",
"docs",
]
),
python_requires='>=3.5, <4',
py_modules=['sharding'],
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md',
include_package_data=True,
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=INSTALL_REQUIRES,
)