forked from ethereum/populus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (51 loc) · 1.59 KB
/
setup.py
File metadata and controls
57 lines (51 loc) · 1.59 KB
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
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
DIR = os.path.dirname(os.path.abspath(__file__))
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
readme = open(os.path.join(DIR, 'README.md')).read()
setup(
name='populus',
version="0.8.0",
description="""Ethereum Development Framework""",
long_description=readme,
author='Piper Merriam',
author_email='pipermerriam@gmail.com',
url='https://github.com/pipermerriam/populus',
include_package_data=True,
py_modules=['populus'],
install_requires=[
"click>=5.1",
"ethereum-rpc-client>=0.4.0",
"ethereum-ipc-client>=0.1.1",
"ethereum>=1.0.3",
"eth-testrpc>=0.1.17",
"pytest>=2.7.2",
"requests>=2.7.0",
"watchdog>=0.8.3",
"Flask>=0.10.1",
"toposort>=1.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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)