-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
38 lines (35 loc) · 1.01 KB
/
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
35
36
37
38
from setuptools import setup, find_packages
from distutils.core import Extension
DISTNAME = 'mhkit_python_utils'
VERSION = '0.2.0'
PACKAGES = ['mhkit_python_utils']
EXTENSIONS = []
DESCRIPTION = ''
LONG_DESCRIPTION = open('README.md').read()
AUTHOR = 'mhkit developers'
MAINTAINER_EMAIL = ''
LICENSE = 'Revised BSD'
URL = ''
CLASSIFIERS=['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
]
DEPENDENCIES = ['pandas']
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,
classifiers=CLASSIFIERS,
zip_safe=False,
install_requires=DEPENDENCIES,
scripts=[],
include_package_data=True
)