forked from vyperlang/vyper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (32 loc) · 903 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='vyper',
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
version='0.1.0-beta.1',
description='Vyper Programming Language for Ethereum',
long_description=readme,
author='Vitalik Buterin',
author_email='',
url='https://github.com/ethereum/vyper',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
python_requires='>=3.6',
install_requires=['py-evm==0.2.0a18'],
setup_requires=['pytest-runner'],
tests_require=[
'pytest',
'pytest-cov',
'eth-tester==0.1.0b26',
'py-evm==0.2.0a18',
],
scripts=[
'bin/vyper',
'bin/vyper-serve',
'bin/vyper-run',
]
)