-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (26 loc) · 958 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (26 loc) · 958 Bytes
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
#!/usr/bin/env python
'''EncryptedPickle Setup'''
from distutils.core import setup
import encryptedpickle
setup(
name=encryptedpickle.__title__,
version=encryptedpickle.__version__,
author=encryptedpickle.__author__,
author_email=encryptedpickle.__author_email__,
url=encryptedpickle.__url__,
license=encryptedpickle.__license__,
description=encryptedpickle.__doc__,
long_description=open('README.rst').read(),
packages=['encryptedpickle'],
install_requires=[i.strip() for i in open('requirements.txt').readlines()],
platforms=['OS Independent'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)