-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 816 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 816 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
from distutils.core import setup
#This is a list of files to install, and where
#(relative to the 'root' dir, where setup.py is)
#You could be more specific.
#files = ["things/*"]
setup(name = "phdb",
version = "0.1.0.0",
description = "PhD Personal Academic Database",
author = "George Ungureanu",
author_email = "ugeorge@kth.se",
url = "-",
#Name the folder where your packages live:
#(If you have other packages (dirs) or modules (py files) then
#put them into the package directory - they will be found
#recursively.)
packages = ['phdb'],
#package_data = {'package' : files },
#'runner' is in the root.
scripts = ["runner"],
test_suite="tests",
long_description = """Really long text here."""
#
#This next part it for the Cheese Shop, look a little down the page.
#classifiers = []
)