-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (30 loc) · 1.07 KB
/
setup.py
File metadata and controls
executable file
·37 lines (30 loc) · 1.07 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
#!/usr/bin/env python
import os
import setuptools
def read_from_root(name):
return open(os.path.join(os.path.dirname(__file__), name)).read()
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Version Control',
]
setuptools.setup(
author='Piotr Kilczuk',
author_email='piotr@tymaszweb.pl',
name='python-version-info',
version='0.0.6',
description='Easy way to find out and display VCS versions of your projects',
long_description=read_from_root('README.rst'),
url='https://github.com/TyMaszWeb/python-version-info',
license='MIT License',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=read_from_root('requirements.txt').split(),
tests_require=read_from_root('test-requirements.txt').split(),
packages=setuptools.find_packages(),
include_package_data=True,
# test_suite='runtests.main',
)