-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.38 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("LICENSE", "r") as fh:
license_file = fh.read()
setuptools.setup(
name="repometascore",
version="0.3.0",
author="Cossack Labs",
author_email="[email protected]",
description="Use RepoMetaScore (repository metadata scoring) to find risky projects in your dependency chain.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cossacklabs/repometascore",
project_urls={
"Bug Tracker": "https://github.com/cossacklabs/repometascore/issues",
},
install_requires=[
"aiohttp~=3.8.1",
# We are using current commit, because it is much fresher commit with updated whois servers (9 month newer)
# And it seems that author currently decided not to maintain his package (version 0.7.3 as of 10 May 2022)
"python-whois @ git+https://github.com/nicopapamichael/whois@939e05d#egg=python-whois",
"aiodns~=3.0.0"
],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
include_package_data=True,
license='Apache Software License',
platforms=['OS Independent']
)