-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (47 loc) · 1.5 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
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
import os
from setuptools import setup, find_packages
try:
with open('README.rst') as f:
readme = f.read()
except IOError:
readme = ''
def _requires_from_file(filename):
return open(filename).read().splitlines()
# version
here = os.path.dirname(os.path.abspath(__file__))
version = next((line.split('=')[1].strip().replace("'", '')
for line in open(os.path.join(here,
'pytab',
'__init__.py'))
if line.startswith('__version__ = ')),
'0.0.dev0')
setup(
name='pytab',
version=version,
url='https://github.com/HiroshiARAKI/pytable',
author='Hiroshi ARAKI',
author_email='araki@hirlab.net',
maintainer='Hiroshi ARAKI',
maintainer_email='araki@hirlab.net',
description='pyTable is the library to plot table easily!',
long_description=readme,
packages=find_packages(),
install_requires=[
'matplotlib>=3.1.2',
'pandas>=1.0.3',
'numpy',
],
license='MIT',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
],
)