-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (42 loc) · 1.46 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
import os
from setuptools import (
find_packages,
setup,
)
def url(*args):
return '/'.join(args)
here = os.path.abspath(os.path.dirname(__file__))
with open('README.rst', 'r') as f:
readme = f.read()
package_name = 'python-disk-collections'
url_profile = 'https://github.com/thegrymek'
version = '0.0.5'
setup(
name=package_name,
version=version,
author='thegrymek',
author_email='andrzej.grymkowski@gmail.com',
description='Package provides classes: FileList, FileDeque that behaves '
'like bulltins but keeps items at disk.',
long_description=readme,
packages=find_packages(),
tests_require=['pytest', 'tox', 'flake8'],
url=url(url_profile, package_name),
download_url=url(url_profile, package_name, 'archive/%s.tar.gz' % version),
license='MIT',
zip_safe=False,
keywords=['pickle', 'cache', 'collections', 'list', 'deque', 'json',
'zlib', 'disk'],
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)