-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (39 loc) · 1.38 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import os
from setuptools import find_packages
from setuptools import setup
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
extra_files = []
extra_files.extend(package_files('keymint_profile/schema'))
extra_files.extend(package_files('keymint_profile/template'))
setup(
name='keymint_profile',
version='0.0.0',
packages=find_packages(exclude=['test']),
author='Ruffin White',
author_email='[email protected]',
maintainer='Ruffin White',
maintainer_email='[email protected]',
url='https://github.com/keymint/keymint_profile/wiki',
download_url='https://github.com/keymint/keymint_profile/releases',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Keymint is a build system for keystores.',
long_description="""\
Keymint defines metainformation for keys, their certificats,
and provides tooling to build these federated keystores together.""",
license='Apache License, Version 2.0',
test_suite='test',
package_data={
'keymint_profile': extra_files,
},
)