-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
38 lines (31 loc) · 944 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
from setuptools import setup, find_packages
NAME = 'vde'
VERSION = '0.1a'
def read(filename):
import os
BASE_DIR = os.path.dirname(__file__)
filename = os.path.join(BASE_DIR, filename)
with open(filename, 'r') as fi:
return fi.read()
def readlist(filename):
rows = read(filename).split("\n")
rows = [x.strip() for x in rows if x.strip()]
return list(rows)
setup(
name=NAME,
version=VERSION,
author="Carlos X. Hernandez, Hannah K. Wayment-Steele, "
"Mohammad M. Sultan, Brooke E. Husic",
author_email="cxh@stanford.edu",
url='https://github.com/msmbuilder/%s' % NAME,
download_url='https://github.com/msmbuilder/%s/tarball/master' % NAME,
long_description=read('README.md'),
license='MIT',
packages=find_packages(),
zip_safe=True,
entry_points={
'console_scripts': [
'%s = %s.cli.main:main' % (NAME, NAME),
],
},
)