-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
35 lines (30 loc) · 907 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
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: DmytryiStriletskyi
@contact: dmytryi.striletskyi@gmail.com
@license: MIT License
Copyright (C) 2017
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='rutetider',
version='1.0.0',
author='DmytryiStriletskyi',
author_email='dmytryi.striletskyi@gmail.com',
url='https://github.com/DmytryiStriletskyi/rutetider',
description='SQL-module for Rutetider',
download_url='https://github.com/DmytryiStriletskyi/rutetider/archive/master.zip',
license='MIT',
packages=['rutetider (separate pypi)'],
install_requires=['psycopg2'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
)