This repository was archived by the owner on Apr 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·59 lines (48 loc) · 1.91 KB
/
setup.py
File metadata and controls
executable file
·59 lines (48 loc) · 1.91 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import os
import setuptools
try: # for pip >= 10
from pip._internal.req import parse_requirements
from pip._internal.download import PipSession
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
from pip.download import PipSession
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()
setuptools.setup(
name='steamfiles',
version='0.1.4',
url='https://github.com/leovp/steamfiles',
license='MIT',
author='Leonid Runyshkin',
author_email='runyshkin@gmail.com',
keywords='steam files valve format parse appinfo vdf acf manifest',
description='Python library for parsing the most common Steam file formats.',
long_description=read('README.rst'),
include_package_data=True,
package_data={'': ['README.rst', 'LICENSE']},
platforms=['any'],
packages=setuptools.find_packages(exclude=['tests']),
install_requires=[
str(req.req) for req in parse_requirements('requirements.txt',
session=PipSession())
],
tests_require=[
str(req.req) for req in parse_requirements('requirements_test.txt',
session=PipSession())
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)