forked from ApeWorX/py-solc-x
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.2 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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="py-solc-x",
version="1.1.1", # don't change this manually, use bumpversion instead
description="Python wrapper and version management tool for the solc Solidity compiler.",
long_description_markdown_filename="README.md",
author="Ben Hauser (forked from py-solc by Piper Merriam)",
author_email="[email protected]",
url="https://github.com/iamdefinitelyahuman/py-solc-x",
include_package_data=True,
py_modules=["solcx"],
setup_requires=["setuptools-markdown"],
python_requires=">=3.6, <4",
install_requires=["requests>=2.19.0,<3", "semantic_version>=2.8.1,<3"],
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 :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)