forked from praekeltfoundation/portia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·49 lines (41 loc) · 1.13 KB
/
setup.py
File metadata and controls
executable file
·49 lines (41 loc) · 1.13 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
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('requirements.txt') as req_file:
requirements = req_file.read().split('\n')
with open('requirements-dev.txt') as req_file:
requirements_dev = req_file.read().split('\n')
with open('VERSION') as fp:
version = fp.read().strip()
setup(
name='portia',
version=version,
description="Portia",
long_description=readme,
author="Praekelt Foundation",
author_email='dev@praekeltfoundation.org',
url='https://github.com/praekelt/portia',
packages=[
'portia',
],
package_dir={'portia':
'portia'},
include_package_data=True,
install_requires=requirements,
license="BSD",
zip_safe=False,
keywords='portia',
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
],
entry_points={
'console_scripts': ['portia = portia.cli:main'],
},
)