forked from vyperlang/vyper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (58 loc) · 1.44 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
test_deps = [
'pytest>=3.6',
'pytest-cov==2.4.0',
'coveralls[yaml]==1.6.0',
'pytest-xdist==1.18.1',
'py-evm==0.2.0a39',
'eth-tester==0.1.0b37',
'web3==5.0.0a6',
'tox>=3.7,<4',
'hypothesis==4.11.7'
]
lint_deps = [
'flake8>=3.7,<4',
'flake8-bugbear==18.8.0',
'isort>=4.2.15,<5',
'mypy==0.670',
]
extras = {
'test': test_deps,
'lint': lint_deps,
}
setup(
name='vyper',
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
version='0.1.0-beta.9',
description='Vyper Programming Language for Ethereum',
long_description_markdown_filename='README.md',
author='Vitalik Buterin',
author_email='',
url='https://github.com/ethereum/vyper',
license="MIT",
keywords='ethereum',
include_package_data=True,
packages=find_packages(exclude=('tests', 'docs')),
python_requires='>=3.6',
py_modules=['vyper'],
install_requires=[
'pycryptodome>=3.5.1,<4',
],
setup_requires=[
'pytest-runner',
'setuptools-markdown'
],
tests_require=test_deps,
extras_require=extras,
scripts=[
'bin/vyper',
'bin/vyper-serve',
'bin/vyper-lll'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
]
)