-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (38 loc) · 1.31 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
"""
groupenc: Group Encryption Utilities
"""
from setuptools import setup, find_packages
VERSION = '0.3.0'
def getRequirements():
with open('requirements.txt') as requirements:
for req in requirements:
req = req.strip()
if req and not req.startswith('#'):
yield req
def getReadme():
with open('README.md') as readme:
return readme.read()
setup(name='groupenc',
version=VERSION,
description="groupenc: Group Encryption Utilities",
long_description=getReadme(),
long_description_content_type='text/markdown',
classifiers=
[
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='groupenc encryption group vault offline',
author='Karthik Kumar Viswanathan',
author_email='karthikkumar@gmail.com',
url='http://github.com/guilt/groupenc',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=list(getRequirements()),
)