-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
50 lines (42 loc) · 1.21 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
#!/usr/bin/env python
# Bootstrap installation of Distribute
import distribute_setup
distribute_setup.use_setuptools()
import os
from setuptools import setup
PROJECT = 'python-blueprint'
VERSION = '0.6.1'
URL = 'https://github.com/eykd/blueprint'
AUTHOR = 'David Eyk'
AUTHOR_EMAIL = '[email protected]'
DESC = "Magical blueprints for procedural generation of content."
def read_file(file_name):
file_path = os.path.join(
os.path.dirname(__file__),
file_name
)
return open(file_path).read()
setup(
name=PROJECT,
version=VERSION,
description=DESC,
long_description=read_file('README.rst'),
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=read_file('LICENSE'),
packages=['blueprint'],
install_requires=['six'],
include_package_data=True,
zip_safe=False,
classifiers=[
# see http://pypi.python.org/pypi?:action=list_classifiers
# -*- Classifiers -*-
"Programming Language :: Python",
"Topic :: Games/Entertainment",
"Topic :: Artistic Software",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
)