-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 867 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 867 Bytes
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
import os
from setuptools import setup, find_packages
# version-keeping code based on pybedtools
curdir = os.path.abspath(os.path.dirname(__file__))
MAJ = 0
MIN = 0
REV = 0
VERSION = '%d.%d.%d' % (MAJ, MIN, REV)
with open(os.path.join(curdir, 'gam/version.py'), 'w') as fout:
fout.write(
"\n".join(["",
"# THIS FILE IS GENERATED FROM SETUP.PY",
"version = '{version}'",
"__version__ = version"]).format(version=VERSION)
)
setup(
name='gam',
version=VERSION,
description='GAM - CSE185 Project',
author='Pei Ting Chua Chai, Omar Halawa',
author_email='pchai@ucsd.edu, ohalawa@ucsd.edu',
packages=find_packages(),
entry_points={
"console_scripts": [
"gam=gam.gam:main"
],
},
)