forked from owncloud-archive/ocdev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 937 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
from setuptools import setup, find_packages
with open('requirements.txt', 'r') as infile:
install_requires = infile.read().split('\n')
with open('README.rst', 'r') as infile:
long_description = infile.read()
with open("ocdev/version.txt", 'r') as infile:
version = ''.join(infile.read().split())
setup (
name = 'ocdev',
version = version,
description = 'ownCloud development tool',
long_description = long_description,
author = 'Bernhard Posselt',
author_email = '[email protected]',
url = 'https://github.com/owncloud/ocdev',
packages = find_packages(exclude=('tests',)),
include_package_data = True,
license = 'GPL',
install_requires = install_requires,
keywords = ['owncloud', 'app', 'scaffolding', 'setup', 'development'],
test_suite = 'tests',
entry_points = {
'console_scripts': [
'ocdev = ocdev.application:main'
]
}
)