-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
43 lines (38 loc) · 904 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
import sys
import os
install_requires = [
'beautifulsoup4',
'requests',
'python-dateutil'
]
test_requires = [
'nose',
'mock'
]
suggested = {
}
setup(name='python-autocite',
version='0.0.4',
description='Scrape webpages and generate citations',
author='Nate Levesque',
author_email='[email protected]',
url='https://github.com/thenaterhood/python-autocite/archive/master.zip',
install_requires=install_requires,
tests_require=test_requires,
test_suite='nose.collector',
package_dir={'':'src'},
package_data={
},
entry_points={
'console_scripts': [
'autocite = python_autocite.__main__:main',
]
},
packages=[
'python_autocite',
'python_autocite.formatter',
'python_autocite.lib'
],
)