-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (58 loc) · 2.05 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
61
from setuptools import setup, find_packages
import sys, os
version = '0.6'
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_projects',
version=version,
description="Assorted fassembler projects for creating repeatable OpenCore builds",
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 (GPL)",
"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 projects frontend zine socialplanning opencore',
author='Ethan Jucovy',
author_email='[email protected]',
url='http://coactivate.org/projects/opencore',
license='GPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
"fassembler"
],
## FIXME: release all of these once fassembler stabilizes:
dependency_links=[
'https://github.com/socialplanning/fassembler/archive/master.zip#egg=fassembler',
],
entry_points="""
[fassembler.project]
frontend = fassembler_projects.frontend:FrontendProject
zine = fassembler_projects.zine:ZineProject
""",
)