-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
60 lines (55 loc) · 1.98 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
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup, find_packages
version = '0.7.3'
long_description = (
open("README.rst").read()
+ '\n' +
'Changes\n'
'=======\n'
+ '\n' +
open("docs/CHANGES.txt").read()
+ '\n' +
'Contributors\n'
'************\n'
+ '\n' +
open("docs/CONTRIBUTORS.rst").read()
+ '\n')
setup(name='opencore-fassembler_boot',
version=version,
description="Creates a setup for new OpenCore site deployments that use Fassembler",
long_description=long_description,
# Get strings from https://pypi.org/pypi?:action=list_classifiers
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2.4",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Desktop Environment :: File Managers",
"Topic :: Software Development :: Assemblers",
"Topic :: System :: Systems Administration",
],
keywords='fassembler bootstrap console scripts setup opencore site deployments socialplanning',
author='opencore developers',
author_email='[email protected]',
url='http://www.coactivate.org/projects/opencore',
license='GPLv3',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
"Tempita",
"setuptools",
],
entry_points="""
[console_scripts]
new-opencore-site = fassembler_boot.newsite:main
new-opencore-site-config = fassembler_boot.newsite:config
rebuild-opencore-site = fassembler_boot.newbuild:main
""",
)