-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 1.1 KB
/
setup.py
File metadata and controls
42 lines (36 loc) · 1.1 KB
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
# coding:utf8
"""
Created on Jun 18, 2014
@author: ilcwd
"""
import os
from setuptools import setup, find_packages
_CWD = os.path.dirname(__file__)
NAME = 'choy'
DESCRIPTION = 'Wiki system using Markdown.'
AUTHOR = 'ilcwd'
INSTALL_REQUIRES = [i for i in open(os.path.join(_CWD, 'requirements.txt')).readlines()
if not i.startswith(('-', '#', '\n'))]
VERSION = open(os.path.join(_CWD, 'VERSION')).read().strip()
setup(
name=NAME,
description=DESCRIPTION,
# long_description=open(os.path.join(_CWD, 'README.md')).read(),
version=VERSION,
packages=find_packages(exclude=['examples', 'tests']),
install_requires=INSTALL_REQUIRES,
author=AUTHOR,
author_email=EMAIL,
license="No License",
platforms=['any'],
url="",
classifiers=["Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Blog",
"Topic :: Software Development :: Libraries :: Python Modules",
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
)