-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (31 loc) · 892 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (31 loc) · 892 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
31
32
from setuptools import setup, find_packages
setup(
name='crysp',
version='1.2',
description='Crypto Stuff in Python',
long_description='some of my crypto-related facilities...',
url='https://github.com/bdcht/crysp',
author='Axel Tillequin',
author_email='bdcht3@gmail.com',
license='GPLv2',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3',
],
keywords='cryptography development',
packages=find_packages(),
setup_requires=['pytest-runner',],
tests_require=['pytest',],
install_requires=[],
extras_require={
'test': ['pytest'],
'full': ['matplotlib','grandalf'],
},
package_data={
},
data_files=[],
entry_points={
},
)