forked from Dexaran/viper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 879 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
# -*- 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()
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
version = '0.0.2'
setup(
name='viper',
version=version,
description='Viper Programming Language for Ethereum',
long_description=readme,
author='Vitalik Buterin',
author_email='',
url='https://github.com/ethereum/viper',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
install_requires=[
'ethereum==2.1.3',
'bumpversion',
'pytest-cov',
'pytest-runner', # Must be after pytest-cov or it will not work
# due to https://github.com/pypa/setuptools/issues/196
],
scripts=['bin/viper', 'bin/viper-serve']
)