-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 981 Bytes
/
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
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
readme_content = f.read()
from fuzzer_cov import version
setup(
name='fuzzer-cov',
version=version,
long_description=readme_content,
long_description_content_type='text/markdown',
url='https://github.com/Myriad-Dreamin/fuzzer-cov',
download_url=f'https://github.com/Myriad-Dreamin/fuzzer-cov/archive/v{version}.tar.gz',
author='Myriad Dreamin',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[],
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
]
)