-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 718 Bytes
/
setup.py
File metadata and controls
28 lines (23 loc) · 718 Bytes
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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
long_description = (
open('README.rst').read()
)
reqs = [line.strip() for line in open('requirements.txt')]
setup(name = 'giza',
version = '1.0.0',
description = 'Demo for Sphinx Tutorial',
long_description = long_description,
author = 'Carsten Ebhrecht',
email = '',
license = 'Apache 2.0',
packages=find_packages(),
include_package_data=True,
zip_safe = False,
install_requires = reqs,
entry_points = {
'console_scripts': [
'giza=giza:main',
]}
)