forked from vyperlang/vyper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (68 loc) · 2.6 KB
/
Copy pathsetup.py
File metadata and controls
81 lines (68 loc) · 2.6 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# -*- coding: utf-8 -*-
import os
import re
import subprocess
from setuptools import setup
with open("README.md", "r", encoding="utf-8") 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.11,<4",
py_modules=["vyper"],
setup_requires=["setuptools_scm>=7.1.0,<8.0.0"],
entry_points={
"console_scripts": [
"vyper=vyper.cli.vyper_compile:_parse_cli_args",
"fang=vyper.cli.vyper_ir:_parse_cli_args",
"vyper-json=vyper.cli.vyper_json:_parse_cli_args",
"venom=vyper.cli.venom_main:_parse_cli_args",
]
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
package_data={"vyper.ast": ["grammar.lark"]},
data_files=[("", [hash_file_rel_path])],
)