forked from VersionClimber/VersionClimber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (26 loc) · 964 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
from setuptools import setup, find_packages
# Packages list, namespace and root directory of packages
packages = find_packages('.')
name = 'VersionClimber'
description = 'Version Climber: System and Algorithms for Package evolution in Data Science.'
long_description = description
authors = 'Christophe Pradal, Sarah Cohen-Boulakia, Patrick Valduriez, Dennis Shasha'
authors_email = 'christophe.pradal at cirad.fr, shasha at courant.nyu.edu, Sarah.Cohen_Boulakia at lri.fr, Patrick.Valduriez at inria.fr'
url = 'https://github.com/VersionClimber/VersionClimber'
license = 'Cecill-C'
version='1.3.5'
setup(
name=name,
version=version,
description=description,
long_description=long_description,
author=authors,
author_email=authors_email,
url=url,
license=license,
keywords='',
packages=packages,
zip_safe=False,
# Dependencies
entry_points={"console_scripts": ["vclimb = versionclimber.vclimb:main"]},
)