-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (48 loc) · 1.77 KB
/
setup.py
File metadata and controls
53 lines (48 loc) · 1.77 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os.path import dirname, abspath, join
base_path = dirname(abspath(__file__))
with open(join(base_path, "README.md")) as readme_file:
readme = readme_file.read()
with open(join(base_path, "requirements.txt")) as req_file:
requirements = req_file.readlines()
setup(
name="zip_archive",
description='A light zip archive class for storing text and json files.',
long_description=readme,
license="MIT",
author='P. Mühleder',
author_email='pmuehleder@uni-leipzig.de',
url='https://github.com/missinglinks/zip_archive',
packages=find_packages(exclude=['dev', 'docs']),
package_dir={
'zip_archive': 'zip_archive'
},
version="1.0.0",
py_modules=["zip_archive"],
install_requires=requirements,
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: System :: Logging',
],
keywords=[
'zip', 'archive', 'text', 'json', 'storage'
],
)