-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 808 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 808 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
from setuptools import setup, find_packages
from distutils.core import Extension
DISTNAME = 'art-python'
VERSION = '0.0.3'
PACKAGES = ['art']
EXTENSIONS = []
DESCRIPTION = 'Python package'
LONG_DESCRIPTION = open('README.md').read()
AUTHOR = 'ART Developers'
MAINTAINER_EMAIL = 'cbirkjones@gmail.com'
LICENSE = 'MIT'
URL = 'https://github.com/cbirkj/art-python'
setuptools_kwargs = {
'zip_safe': False,
'install_requires': ['pandas >= 0.18.0'],
'scripts': [],
'include_package_data': True
}
setup(name=DISTNAME,
version=VERSION,
packages=PACKAGES,
ext_modules=EXTENSIONS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
maintainer_email=MAINTAINER_EMAIL,
license=LICENSE,
url=URL,
**setuptools_kwargs)