-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (53 loc) · 1.73 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='populllus',
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
version='2.2.2',
description="""Ethereum Development Framework (fork for LLL)""",
long_description_markdown_filename='README.md',
url='https://gitlab.com/veox/populllus',
include_package_data=True,
py_modules=['populus'],
setup_requires=['setuptools-markdown'],
install_requires=[
"anyconfig>=0.7.0",
"click>=6.6",
"cytoolz>=0.8.2",
"contextlib2>=0.5.4",
"eth-testrpc>=1.3.0",
"eth-utils>=0.7.4,<0.8",
"jsonschema>=2.5.1",
"py-geth>=1.9.0",
"py-solc>=1.2.0",
"pylru>=1.0.9",
"pysha3>=0.3,!=1.0,>1.0.0",
"pytest>=2.7.2,!=3.3.0",
"rlp>=0.6.0,<1",
"semantic_version>=2.6.0",
"toposort>=1.4",
"watchdog>=0.8.3",
"web3>=3.16.5,<4",
],
license="MIT",
zip_safe=False,
entry_points={
'console_scripts': ["populus=populus.cli:main"],
'pytest11': ['ethereum=populus.plugin'],
},
keywords='ethereum pytest',
packages=find_packages(exclude=["tests", "tests.*"]),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)