forked from dbgrigsby/Postr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 605 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 605 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages
from setuptools import setup
setup(
name='Postr',
version='0.0.1',
packages=find_packages(),
license='MIT',
author='Adam Beck, Daniel Grigsby, Dominique Owens, '
'Rachel Pavlokovick, Tommy Lu',
author_email='dbg28@case.edu',
description='Postr is a Social Media Management Tool',
url='https://github.com/dbgrigsby/Postr/',
project_urls={
'Bug Tracker': 'https://github.com/dbgrigsby/Postr/issues',
'Source Code': 'https://github.com/dbgrigsby/Postr',
},
install_requires=[
'GitPython',
],
)