forked from FriendsOfGalaxy/buildtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (27 loc) · 936 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
34
from setuptools import setup, find_packages
from src.fog.buildtools import __version__
with open("README.md", 'r') as f:
long_description = f.read()
with open('requirements/app.txt') as f:
dependencies = f.read().splitlines()
setup(
name="fog.buildtools",
version=__version__,
license="MIT",
description="Build tools for GOG Galaxy 2.0 plugins",
long_description=long_description,
long_description_content_type="text/markdown",
author='FriendsOfGalaxy',
author_email='[email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=dependencies,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
python_requires='>=3.6',
)