Basic dev/test setup for separate package subdirectories.

This commit is contained in:
Jakub Warmuz
2015-07-10 16:38:42 +00:00
parent 2f9cd68807
commit b9df69af9f
15 changed files with 104 additions and 92 deletions
+1
View File
@@ -0,0 +1 @@
recursive-include acme/testdata *
+29
View File
@@ -0,0 +1,29 @@
from setuptools import setup
from setuptools import find_packages
install_requires = [
'argparse',
# load_pem_private/public_key (>=0.6)
# rsa_recover_prime_factors (>=0.8)
'cryptography>=0.8',
'mock<1.1.0', # py26
'pyrfc3339',
'ndg-httpsclient', # urllib3 InsecurePlatformWarning (#304)
'pyasn1', # urllib3 InsecurePlatformWarning (#304)
'PyOpenSSL',
'pytz',
'requests',
'werkzeug',
]
setup(
name='acme',
packages=find_packages(),
install_requires=install_requires,
entry_points={
'console_scripts': [
'jws = acme.jose.jws:CLI.run',
],
},
)