mirror of
https://github.com/nikdoof/evecalics.git
synced 2025-12-11 15:52:15 +00:00
15 lines
401 B
Python
15 lines
401 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name = "evecal",
|
|
version = '0.1',
|
|
description = "EVE API Calendar abstraction library",
|
|
author = "Andrew Williams",
|
|
author_email = "andy@tensixtyone.com",
|
|
url = "https://github.com/nikdoof/evecal/",
|
|
keywords = "eve api eveonline calendar ics",
|
|
py_modules = ['evecal',],
|
|
scripts = ['scripts/evetoics'],
|
|
)
|