-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (41 loc) · 1.24 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
45
46
47
# -*- coding: utf-8 *-*
import os
import subprocess
import sys
try:
from setuptools import setup
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
from distutils.cmd import Command
with open('README.rst') as f:
readme_content = f.read()
setup(
name='subte',
version='0.0+',
url='https://github.com/MongoDBPeru/subte',
description='Utilities for Subte project.',
long_description=readme_content,
author='MongoDB Perú',
author_email='[email protected]',
packages=['subte'],
keywords=['subte', 'mongodb', 'university', 'courses', 'translation',
'utilities'],
install_requires=['pymongo'],
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'],
entry_points={
'console_scripts': [
'subte-gen = subte.generator:main',
],
},
test_suite='tests.runtests',
)