-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 960 Bytes
/
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
import setuptools
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name = "ccdgen",
version = "0.0.11",
author = "Tim Brewis",
author_email = "timbrewis27@gmail.com",
license = "Apache-2.0",
description = ("Generates compilation databases by capturing standard "
"output from Make"),
long_description = read('README.md'),
long_description_content_type = 'text/markdown',
project_urls={
'Source': 'https://github.com/t-bre/ccdgen',
'Tracker': 'https://github.com/t-bre/ccdgen',
},
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.10'
],
keywords = 'make'
)