forked from aboutcode-org/aboutcode-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (47 loc) · 1.78 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (47 loc) · 1.78 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
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
from setuptools import setup
from about_code_tool import about
setup(
name='about-code-tool',
version=about.__version__,
description=('Document the provenance (origin and license) of '
'third-party software. Collect inventories, generate '
'attribution docs.'),
author=('Jillian Daguil, Thomas Druez, Chin-Yeung Li, '
'Philippe Ombredanne and others.'),
author_email='info@nexb.com',
url='http://dejacode.org',
long_description=('AboutCode provides a simple way to document the'
'provenance (i.e. origin and license) and other important or'
'interesting information about third-party software components that'
'you use in your project. This documentation is stored in *.ABOUT'
'files, side-by-side with the code they document.'),
license='Apache License 2.0',
packages=[
'about_code_tool',
'about_code_tool.tests'
],
package_data={
'about_code_tool': ['templates/*'],
},
include_package_data=True,
zip_safe=False,
test_suite='about_code_tool.tests',
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: Software Development',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Quality Assurance',
'Topic :: System :: Software Distribution',
'Topic :: Utilities',
],
)