-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
35 lines (30 loc) · 924 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
from setuptools import setup, find_packages
NAME = 'cgnet'
VERSION = '0.1'
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="Nick Charron, Brooke Husic, Dominik Lemm, Jiang Wang",
author_email="[email protected]",
url='https://github.com/coarse-graining/cgnet',
#download_url='https://github.com/coarse-graining/cgnet/tarball/master',
#long_description=read('README.md'),
license='BSD-3-Clause',
packages=find_packages(),
zip_safe=True,
entry_points={
'console_scripts': [
'%s = %s.cli.main:main' % (NAME, NAME),
],
},
)