-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (36 loc) · 1.29 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
39
40
41
#!/usr/bin/env python
from setuptools import setup
from pandas_extras import __version__ as pe_version
with open('README.md') as desc:
LONG_DESCRIPTION = desc.read()
setup(
name='pandas-extras',
version=pe_version,
description='Extension package for the popular Pandas library',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
maintainer='Hodossy, Szabolcs',
maintainer_email='[email protected]',
url='https://github.com/nokia/pandas-extras',
license='BSD',
platforms='any',
packages=['pandas_extras'],
keywords=['pandas', 'data analysis', 'data transformation'],
install_requires=[
'pandas',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires='>=3.6',
)