-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
25 lines (22 loc) · 851 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
#!/usr/bin/env python3
import subprocess, os
from setuptools import setup
print("Obtaining version... ", end="")
try:
version = subprocess.check_output(["git", "describe", "--dirty=+"],
universal_newlines=True)
except subprocess.CalledProcessError as e:
version = "0.0.1"
print(version)
setup(name='swirlypy',
version=version,
description='Python courseware',
author='Alexander Bauer/Samarth',
author_email='[email protected]',
url='https://github.com/Samarth2506/swirlypy',
include_package_data=True,
download_url = 'https://github.com/Samarth2506/swirlypy/archive/0.0.1.tar.gz',
scripts=['swirlypy/run_swirlypy'],
packages=['swirlypy', 'swirlypy.questions','courses'],
install_requires=['pyyaml','numpy', 'pandas', 'sklearn','tqdm'],
)