-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 884 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
from setuptools import *
versionFile = "VERSION"
setup(name="frhd-python",
version=5.1,
description="Library to edit FRHD tracks",
long_description=open('README.rst').read(),
url="https://github.com/gaetgu/frhd",
download_url="https://github.com/gaetgu/frhd/archive/v_5.3.tar.gz",
install_requires=[
'json',
'requests',
'decode'
],
author="Gaetgu",
author_email="gabriel.ethan.phantom@gmail.com",
license="MIT License",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only"
],
keywords="development freeriderhd freerider frhd code track tracks",
packages=find_packages(exclude=["images"]),
)