-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (29 loc) · 955 Bytes
/
setup.py
File metadata and controls
35 lines (29 loc) · 955 Bytes
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
# -*- coding: utf8 -*-
from distutils.core import setup, Extension
from setuptools import find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
required = [r for r in required if not r.startswith('git')]
setup(
name='cert',
version='0.2',
install_requires=required,
description='A framework for reading and writing certs.',
author='Ben Timby',
author_email='btimby@smartfile.com',
url='https://veristack.com/',
platforms='OS Independent',
py_modules=['cert'],
package_data={
'': ['README.rst', 'requirements.txt']
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries'
]
)