-
Notifications
You must be signed in to change notification settings - Fork 232
/
setup.py
39 lines (37 loc) · 1.18 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
setup,
find_packages,
)
setup(
name='py-solc',
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
version='3.2.0',
description="""Python wrapper around the solc binary""",
long_description_markdown_filename='README.md',
author='Piper Merriam',
author_email='pipermerriam@gmail.com',
url='https://github.com/ethereum/py-solc',
include_package_data=True,
py_modules=['solc'],
setup_requires=['setuptools-markdown'],
python_requires='>=3.4, <4',
install_requires=[
"semantic_version>=2.6.0",
],
license="MIT",
zip_safe=False,
keywords='ethereum solidity solc',
packages=find_packages(exclude=["tests", "tests.*"]),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)