-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.23 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
from setuptools import setup
description = (
'Recursively convert lists to tuples, sets to frozensets, dicts to mappingproxy etc.')
with open('README.rst') as readme:
long_description = readme.read()
setup(name='freezedata',
version='2.2.7',
description=description,
long_description=long_description,
url='https://github.com/topper-123/freezedata',
author='Terji Petersen',
author_email='terji78@gmail.com',
license='MIT License',
packages=['freezedata'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
test_suite='tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)