-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
25 lines (21 loc) · 830 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 python
from setuptools import setup, find_packages
DISTNAME = 'ML-lib'
DESCRIPTION = 'Comprehensive machine learning library'
MAINTAINER = 'Christopher Jenness'
URL = 'https://github.com/christopherjenness/ML-lib'
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3']
with open('requirements.txt') as f:
install_reqs = f.read().splitlines()
if __name__ == "__main__":
setup(name=DISTNAME,
maintainer=MAINTAINER,
description=DESCRIPTION,
packages=find_packages(),
url=URL,
classifiers=classifiers,
install_requires=install_reqs)