-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (36 loc) · 1.11 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
from setuptools import setup,find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="statisfy",
version="1.0.2",
author="Aspekts",
author_email="[email protected]",
description="Get statistics from your favourite social media sites, games and more!",
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
url="https://github.com/Yarn-Development/statisfy.py",
download_url="https://github.com/Yarn-Development/statisfy/archive/v_002.tar.gz",
project_urls={
"Bug Tracker": "https://github.com/Yarn-Development/statisfy.py/issues",
},
keywords=[
'python',
'stats',
'statisfy',
'statistics',
'api wrapper',
'analytics'
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
"Natural Language :: English"
]
)