-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 926 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 926 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
"""setup.py for Necrypt"""
__author__ = "Mohsen Ghorbani"
__email__ = "m.ghorbani2357@gmail.com"
__copyright__ = "Copyright 2021, Mohsen Ghorbani"
from setuptools import setup, find_packages
import os
import versioneer
this_dir = os.path.abspath(os.path.dirname(__file__))
REQUIREMENTS = filter(None, open('requirements.txt').read().splitlines())
setup(
name='necrypt',
author=__author__,
author_email=__email__,
url="https://github.com/mghorbani2357/Necrypt",
license="MIT",
zip_safe=False,
packages=find_packages(exclude=["tests*"]),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=[k for k in open('CLASSIFIERS').read().split('\n') if k],
install_requires=list(REQUIREMENTS),
long_description=open('README.rst').read() + open('HISTORY.rst').read(),
long_description_content_type='text/x-rst',
description='Encryption method',
)