This repository was archived by the owner on Mar 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (36 loc) · 1.2 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (36 loc) · 1.2 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
import os
import sys
py_version = sys.version_info
version = ".".join([str(i) for i in __import__('udlg').__VERSION__])
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
CLASSIFIERS = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Natural Language :: English',
'Topic :: Utilities'
]
install_requires = []
setup(
name='udlg',
author='Nickolas Fox <tarvitz@blacklibrary.ru>',
version=version,
author_email='tarvitz@blacklibrary.ru',
#url='http://pypi.python.org/pypi/udlg',
download_url='https://github.com/tarvitz/udlg/archive/master.zip',
description='Underrail *.udlg files utilities',
long_description=open(readme).read(),
license='MIT license',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=install_requires,
packages=find_packages(exclude=['tests', 'docs', 'tools']),
test_suite='tests',
include_package_data=True,
zip_safe=False)