-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 688 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 688 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
from os.path import join, dirname
from setuptools import setup, find_packages
# IMPORTANT: updates to the following must also be done in __init__.py.
__title__ = "datascience"
__version__ = "0.1.0"
__author__ = "Hugues Demers"
__email__ = "hdemers@gmail.com"
__copyright__ = "Hugues Demers"
__license__ = "MIT"
setup(
name='datascience',
version=__version__,
description='Data science library and scripts',
long_description=open(join(dirname(__file__), 'README.md')).read(),
author=__author__,
author_email=__email__,
license=__license__,
packages=find_packages(exclude=('tests', 'docs', 'data')),
#scripts=['bin/'],
install_requires=[
],
)