-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
120 lines (105 loc) · 3.65 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# -*- coding: utf-8 -*-
import os
import re
import subprocess
from setuptools import setup
extras_require = {
"test": [
"pytest>=6.2.5,<7.0",
"pytest-cov>=2.10,<3.0",
"pytest-instafail>=0.4,<1.0",
"pytest-xdist>=2.5,<3.0",
"pytest-split>=0.7.0,<1.0",
"pytest-rerunfailures>=10.2,<11",
"eth-tester[py-evm]>=0.9.0b1,<0.10",
"py-evm>=0.7.0a1,<0.8",
"web3==6.0.0",
"tox>=3.15,<4.0",
"lark==1.1.2",
"hypothesis[lark]>=5.37.1,<6.0",
"eth-stdlib==0.2.6",
],
"lint": [
"black==23.3.0",
"flake8==3.9.2",
"flake8-bugbear==20.1.4",
"flake8-use-fstring==1.1",
"isort==5.9.3",
"mypy==0.982",
],
"docs": ["recommonmark", "sphinx>=6.0,<7.0", "sphinx_rtd_theme>=1.2,<1.3"],
"dev": ["ipython", "pre-commit", "pyinstaller", "twine"],
}
extras_require["dev"] = (
extras_require["test"] + extras_require["lint"] + extras_require["docs"] + extras_require["dev"]
)
with open("README.md", "r") as f:
long_description = f.read()
# strip local version
def _local_version(version):
return ""
def _global_version(version):
from setuptools_scm.version import guess_next_dev_version
# strip `.devN` suffix since it is not semver compatible
# minor regex hack to avoid messing too much with setuptools-scm internals
version_str = guess_next_dev_version(version)
return re.sub(r"\.dev\d+", "", version_str)
hash_file_rel_path = os.path.join("vyper", "vyper_git_commithash.txt")
hashfile = os.path.relpath(hash_file_rel_path)
# there is no way in setuptools-scm to get metadata besides the package
# version into version.py. (and we need that version to be PEP440 compliant
# in order to get it into pypi). so, add the commit hash to the package
# separately, in order so that we can add it to `vyper --version`.
try:
commithash = subprocess.check_output("git rev-parse --short HEAD".split())
commithash_str = commithash.decode("utf-8").strip()
with open(hashfile, "w") as fh:
fh.write(commithash_str)
except subprocess.CalledProcessError:
pass
setup(
name="vyper",
use_scm_version={
"local_scheme": _local_version,
"version_scheme": _global_version,
"write_to": "vyper/version.py",
},
description="Vyper: the Pythonic Programming Language for the EVM",
long_description=long_description,
long_description_content_type="text/markdown",
author="Vyper Team",
author_email="",
url="https://github.com/vyperlang/vyper",
license="Apache License 2.0",
keywords="ethereum evm smart contract language",
include_package_data=True,
packages=["vyper"],
python_requires=">=3.10,<4",
py_modules=["vyper"],
install_requires=[
"asttokens>=2.0.5,<3",
"pycryptodome>=3.5.1,<4",
"semantic-version>=2.10,<3",
"importlib-metadata",
"wheel",
],
setup_requires=["pytest-runner", "setuptools_scm"],
tests_require=extras_require["test"],
extras_require=extras_require,
entry_points={
"console_scripts": [
"vyper=vyper.cli.vyper_compile:_parse_cli_args",
"vyper-serve=vyper.cli.vyper_serve:_parse_cli_args",
"fang=vyper.cli.vyper_ir:_parse_cli_args",
"vyper-json=vyper.cli.vyper_json:_parse_cli_args",
]
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
package_data={"vyper.ast": ["grammar.lark"]},
data_files=[("", [hash_file_rel_path])],
)