-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (30 loc) · 979 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
26
27
28
29
30
31
32
33
34
import os
from setuptools import setup
HERE = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(HERE, 'README.md'), 'r') as f:
long_description = f.read()
# Get the long description from the README file
version = {}
with open(os.path.join(HERE, 'k7', '__version__.py'), 'r') as f:
exec (f.read(), version)
setup(
name='k7',
version=version['__version__'],
description='Manipulate k7 files with one hand',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/keomabrun/k7',
author='Keoma Brun-Laguna',
author_email='contact@kbl.netlib.re',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
license='GPL',
packages=['k7'],
install_requires=['pandas'],
package_data={
'samples': ['sample.k7', 'sample.k7.gz'],
},
)