-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.34 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.34 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
from setuptools import setup, find_packages
import os
def read(filename):
path = os.path.join(os.path.dirname(__file__), filename)
contents = open(path).read()
return contents
setup(
name = "ccsyspath",
version = "1.1.1",
description = "Find the system include paths for clang and gcc C/C++ compilers",
long_description = read('README.rst'),
author = "Andrew Walker",
author_email = "walker.ab@gmail.com",
maintainer = "Andrew Walker",
maintainer_email = "walker.ab@gmail.com",
url = "http://github.com/AndrewWalker/ccsyspath",
license = "MIT",
keywords = [ 'clang', 'gcc', 'compiler' ],
packages = find_packages(),
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: OS Independent',
],
test_suite='tests'
)