-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·44 lines (40 loc) · 1.36 KB
/
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
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import codecs
import sys
from vincode.version import __version__
sys.path.insert(0, '..')
setup(
name='vincode',
version=__version__,
author='Artem Vlasov',
author_email='[email protected]',
url='https://github.com/Yuego/vincode',
download_url='https://github.com/Yuego/vincode/archive/{0}.tar.gz'.format(__version__),
description='VIN-code parser',
long_description=codecs.open('README.rst', encoding='utf8').read(),
license='MIT license',
install_requires=[
'pyparsing',
'dawg',
'six',
],
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: Russian',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)