|
| 1 | +from setuptools import find_packages |
| 2 | +from setuptools import setup |
1 | 3 | import os
|
2 |
| -from setuptools import ( |
3 |
| - setup, |
4 |
| - find_packages, |
5 |
| -) |
6 | 4 |
|
7 | 5 |
|
8 | 6 | version = '1.2'
|
|
13 | 11 | tests_require = ['yafowil[test]']
|
14 | 12 |
|
15 | 13 |
|
16 |
| -setup(name='yafowil.bootstrap', |
17 |
| - version=version, |
18 |
| - description=shortdesc, |
19 |
| - long_description=longdesc, |
20 |
| - classifiers=[ |
21 |
| - 'Environment :: Web Environment', |
22 |
| - 'Operating System :: OS Independent', |
23 |
| - 'Programming Language :: Python', |
24 |
| - 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', |
25 |
| - 'License :: OSI Approved :: BSD License', |
26 |
| - ], |
27 |
| - keywords='', |
28 |
| - author='BlueDynamics Alliance', |
29 |
| - |
30 |
| - url=u'https://github.com/bluedynamics/yafowil.bootstrap', |
31 |
| - license='Simplified BSD', |
32 |
| - packages=find_packages('src'), |
33 |
| - package_dir = {'': 'src'}, |
34 |
| - namespace_packages=['yafowil'], |
35 |
| - include_package_data=True, |
36 |
| - zip_safe=False, |
37 |
| - install_requires=[ |
38 |
| - 'setuptools', |
39 |
| - 'yafowil>1.99', |
40 |
| - ], |
41 |
| - tests_require=tests_require, |
42 |
| - extras_require = dict( |
43 |
| - test=tests_require, |
44 |
| - ), |
45 |
| - test_suite="yafowil.bootstrap.tests.test_suite", |
46 |
| - entry_points=""" |
47 |
| - [yafowil.plugin] |
48 |
| - register = yafowil.bootstrap:register |
49 |
| - configure = yafowil.bootstrap:configure |
50 |
| - """) |
| 14 | +setup( |
| 15 | + name='yafowil.bootstrap', |
| 16 | + version=version, |
| 17 | + description=shortdesc, |
| 18 | + long_description=longdesc, |
| 19 | + classifiers=[ |
| 20 | + 'Environment :: Web Environment', |
| 21 | + 'Operating System :: OS Independent', |
| 22 | + 'Programming Language :: Python', |
| 23 | + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', |
| 24 | + 'License :: OSI Approved :: BSD License', |
| 25 | + ], |
| 26 | + keywords='', |
| 27 | + author='BlueDynamics Alliance', |
| 28 | + |
| 29 | + url=u'https://github.com/bluedynamics/yafowil.bootstrap', |
| 30 | + license='Simplified BSD', |
| 31 | + packages=find_packages('src'), |
| 32 | + package_dir = {'': 'src'}, |
| 33 | + namespace_packages=['yafowil'], |
| 34 | + include_package_data=True, |
| 35 | + zip_safe=False, |
| 36 | + install_requires=[ |
| 37 | + 'setuptools', |
| 38 | + 'yafowil>1.99', |
| 39 | + ], |
| 40 | + tests_require=tests_require, |
| 41 | + extras_require = dict( |
| 42 | + test=tests_require, |
| 43 | + ), |
| 44 | + test_suite="yafowil.bootstrap.tests.test_suite", |
| 45 | + entry_points=""" |
| 46 | + [yafowil.plugin] |
| 47 | + register = yafowil.bootstrap:register |
| 48 | + configure = yafowil.bootstrap:configure |
| 49 | + """) |
0 commit comments